home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000037_news@columbia.edu_Mon Apr 3 22:22:23 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19129
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Apr 1995 18:22:33 -0400
  3. Received: by apakabar.cc.columbia.edu id AA19303
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Apr 1995 18:22:31 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: macros and wild cards (feature request)
  9. Date: 3 Apr 1995 22:22:23 GMT
  10. Organization: Columbia University
  11. Lines: 30
  12. Message-Id: <3lpsev$iqm@apakabar.cc.columbia.edu>
  13. References: <ROCKWELL.95Apr3161321@nova.umd.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <ROCKWELL.95Apr3161321@nova.umd.edu>,
  18. Raul Deluth Miller <rockwell@nova.umd.edu> wrote:
  19. >I've spent a lot of time and energy on using kermit as a reliable file
  20. >mover.  Typically, this boils down to sending a file and deleting it
  21. >after it's been successfully transfered.
  22. >
  23. Future releases of Kermit will have a MOVE command that will do this.
  24. In fact, the latest OS/2 C-Kermit 5A(191) Beta edit has this feature,
  25. but so far no other Kermit programs do.
  26.  
  27. >What I originally wanted to be able to do was something like get * but
  28. >with a macro instead of get.
  29. >
  30. I could give you a better answer if I knew which version of Kermit
  31. you were talking about.  MS-DOS Kermit?  C-Kermit?
  32.  
  33. >I think it would be very useful to be able to use implicit looping
  34. >over file names selected by a wild card pattern.
  35. >
  36. We have this in C-Kermit.  We don't have it in MS-DOS Kermit.
  37.  
  38. >It would probably be
  39. >useful to factor this into two steps: gathering the names should
  40. >probably be a different step from the implicit looping.
  41. >
  42. In C-Kermit, you use \ffiles(wildcard) and the fnextfile() to get each
  43. filename, and assign it to an array member.  See the example in
  44. ckcker.bwr (search for "ffiles").
  45.  
  46. - Frank